home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / gate / gateInt.h < prev    next >
C/C++ Source or Header  |  1992-06-05  |  927b  |  33 lines

  1. /*
  2.  * gateInt.h --
  3.  *
  4.  *    Declarations used internally by the "Gate_" procedures.
  5.  *
  6.  * Copyright 1992 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /sprite/src/lib/c/gate/RCS/gateInt.h,v 1.1 92/06/05 12:49:19 jhh Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _GATEINT
  19. #define _GATEINT
  20.  
  21. #ifndef _STDIO
  22. #include <stdio.h>
  23. #endif
  24.  
  25. /*
  26.  * Information about the current database file:
  27.  */
  28.  
  29. extern FILE *gateFile;        /* Non-zero? Then it points to an open file. */
  30. extern char *gateFileName;    /* Name of database file to use. */
  31.  
  32. #endif _HOSTINT
  33.